home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_softspace.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  664b  |  18 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. from test import test_support
  5. import StringIO
  6. f = StringIO.StringIO()
  7.  
  8. class C:
  9.     
  10.     def __str__(self):
  11.         print >>f, 'a'
  12.         return 'b'
  13.  
  14.  
  15. print >>f, C(), 'c ', 'd\t', 'e'
  16. print >>f, 'f', 'g'
  17. test_support.vereq(f.getvalue(), 'a\nb c  d\te\nf g\n')
  18.